home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 March / PCWorld_2007-03_cd.bin / temacd / htmlwap / Html-Wap editor 2007 verze 3.04.exe / greprefs / all.js next >
Text File  |  2006-01-22  |  53KB  |  2,147 lines

  1. /* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
  2.  
  3. /* ***** BEGIN LICENSE BLOCK *****
  4.  
  5.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  6.  
  7.  *
  8.  
  9.  * The contents of this file are subject to the Mozilla Public License Version
  10.  
  11.  * 1.1 (the "License"); you may not use this file except in compliance with
  12.  
  13.  * the License. You may obtain a copy of the License at
  14.  
  15.  * http://www.mozilla.org/MPL/
  16.  
  17.  *
  18.  
  19.  * Software distributed under the License is distributed on an "AS IS" basis,
  20.  
  21.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  22.  
  23.  * for the specific language governing rights and limitations under the
  24.  
  25.  * License.
  26.  
  27.  *
  28.  
  29.  * The Original Code is mozilla.org code.
  30.  
  31.  *
  32.  
  33.  * The Initial Developer of the Original Code is
  34.  
  35.  * Netscape Communications Corporation.
  36.  
  37.  * Portions created by the Initial Developer are Copyright (C) 1998
  38.  
  39.  * the Initial Developer. All Rights Reserved.
  40.  
  41.  *
  42.  
  43.  * Contributor(s):
  44.  
  45.  * Benjamin Smedberg <bsmedberg@covad.net>
  46.  
  47.  *
  48.  
  49.  * Alternatively, the contents of this file may be used under the terms of
  50.  
  51.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  52.  
  53.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  54.  
  55.  * in which case the provisions of the GPL or the LGPL are applicable instead
  56.  
  57.  * of those above. If you wish to allow use of your version of this file only
  58.  
  59.  * under the terms of either the GPL or the LGPL, and not to allow others to
  60.  
  61.  * use your version of this file under the terms of the MPL, indicate your
  62.  
  63.  * decision by deleting the provisions above and replace them with the notice
  64.  
  65.  * and other provisions required by the GPL or the LGPL. If you do not delete
  66.  
  67.  * the provisions above, a recipient may use your version of this file under
  68.  
  69.  * the terms of any one of the MPL, the GPL or the LGPL.
  70.  
  71.  *
  72.  
  73.  * ***** END LICENSE BLOCK ***** */
  74.  
  75.  
  76.  
  77. /* The prefs in this file are shipped with the GRE and should apply to all
  78.  
  79.  * embedding situations. Application-specific preferences belong somewhere else,
  80.  
  81.  * for example xpfe/bootstrap/browser-prefs.js
  82.  
  83.  *
  84.  
  85.  * Platform-specific #ifdefs at the end of this file override the generic
  86.  
  87.  * entries at the top.
  88.  
  89.  */
  90.  
  91.  
  92.  
  93. // SYNTAX HINTS:  dashes are delimiters.  Use underscores instead.
  94.  
  95. //  The first character after a period must be alphabetic.
  96.  
  97.  
  98.  
  99. pref("keyword.URL", "http://www.google.com/search?ie=UTF-8&oe=utf-8&q=");
  100.  
  101. pref("keyword.enabled", false);
  102.  
  103. pref("general.useragent.locale", "chrome://navigator/locale/navigator.properties");
  104.  
  105. pref("general.useragent.contentlocale", "chrome://navigator-region/locale/region.properties");
  106.  
  107.  
  108.  
  109. pref("general.config.obscure_value", 13); // for MCD .cfg files
  110.  
  111.  
  112.  
  113. pref("backups.number_of_prefs_copies", 1);
  114.  
  115.  
  116.  
  117. pref("browser.cache.disk.enable",           true);
  118.  
  119. pref("browser.cache.disk.capacity",         51200);
  120.  
  121. pref("browser.cache.memory.enable",         true);
  122.  
  123. //pref("browser.cache.memory.capacity",     -1);
  124.  
  125. // -1 = determine dynamically, 0 = none, n = memory capacity in kilobytes
  126.  
  127. pref("browser.cache.disk_cache_ssl",        false);
  128.  
  129. // 0 = once-per-session, 1 = each-time, 2 = never, 3 = when-appropriate/automatically
  130.  
  131. pref("browser.cache.check_doc_frequency",   3);
  132.  
  133.  
  134.  
  135. pref("browser.display.use_document_fonts",  1);  // 0 = never, 1 = quick, 2 = always
  136.  
  137. pref("browser.display.use_document_colors", true);
  138.  
  139. pref("browser.display.use_system_colors",   false);
  140.  
  141. pref("browser.display.foreground_color",    "#000000");
  142.  
  143. pref("browser.display.background_color",    "#FFFFFF");
  144.  
  145. pref("browser.display.force_inline_alttext", false); // true = force ALT text for missing images to be layed out inline
  146.  
  147. // 0 = no external leading, 
  148.  
  149. // 1 = use external leading only when font provides, 
  150.  
  151. // 2 = add extra leading both internal leading and external leading are zero
  152.  
  153. pref("browser.display.normal_lineheight_calc_control", 2);
  154.  
  155. pref("browser.display.show_image_placeholders", true); // true = show image placeholders while image is loaded and when image is broken
  156.  
  157. pref("browser.anchor_color",                "#0000EE");
  158.  
  159. pref("browser.active_color",                "#EE0000");
  160.  
  161. pref("browser.visited_color",               "#551A8B");
  162.  
  163. pref("browser.underline_anchors",           true);
  164.  
  165. pref("browser.blink_allowed",               true);
  166.  
  167. pref("browser.enable_automatic_image_resizing", false);
  168.  
  169.  
  170.  
  171. pref("browser.display.use_focus_colors",    false);
  172.  
  173. pref("browser.display.focus_background_color", "#117722");
  174.  
  175. pref("browser.display.focus_text_color",     "#ffffff");
  176.  
  177. pref("browser.display.focus_ring_width",     1);
  178.  
  179. pref("browser.display.focus_ring_on_anything", false);
  180.  
  181.  
  182.  
  183. pref("browser.helperApps.alwaysAsk.force",  false);
  184.  
  185. pref("browser.helperApps.neverAsk.saveToDisk", "");
  186.  
  187. pref("browser.helperApps.neverAsk.openFile", "");
  188.  
  189.  
  190.  
  191. // xxxbsmedberg: where should prefs for the toolkit go?
  192.  
  193. pref("browser.chrome.toolbar_tips",         true);
  194.  
  195. // 0 = Pictures Only, 1 = Text Only, 2 = Pictures and Text
  196.  
  197. pref("browser.chrome.toolbar_style",        2);
  198.  
  199.  
  200.  
  201.  
  202.  
  203. pref("accessibility.browsewithcaret", false);
  204.  
  205. pref("accessibility.warn_on_browsewithcaret", true);
  206.  
  207. // Tab focus model bit field:
  208.  
  209. // 1 focuses text controls, 2 focuses other form elements, 4 adds links.
  210.  
  211. // Most users will want 1, 3, or 7.
  212.  
  213. pref("accessibility.tabfocus", 7);
  214.  
  215. pref("accessibility.usetexttospeech", "");
  216.  
  217. pref("accessibility.usebrailledisplay", "");
  218.  
  219. pref("accessibility.accesskeycausesactivation", true);
  220.  
  221.  
  222.  
  223. // Type Ahead Find
  224.  
  225. pref("accessibility.typeaheadfind", true);
  226.  
  227. pref("accessibility.typeaheadfind.autostart", true);
  228.  
  229. pref("accessibility.typeaheadfind.linksonly", true);
  230.  
  231. pref("accessibility.typeaheadfind.startlinksonly", false);
  232.  
  233. pref("accessibility.typeaheadfind.timeout", 4000);
  234.  
  235. pref("accessibility.typeaheadfind.enabletimeout", true);
  236.  
  237. pref("accessibility.typeaheadfind.soundURL", "default");
  238.  
  239. pref("accessibility.typeaheadfind.enablesound", true);
  240.  
  241.  
  242.  
  243. pref("browser.history_expire_days", 9);
  244.  
  245.  
  246.  
  247. // loading and rendering of framesets and iframes
  248.  
  249. pref("browser.frames.enabled", true);
  250.  
  251.  
  252.  
  253. // form submission
  254.  
  255. pref("browser.forms.submit.backwards_compatible", true);
  256.  
  257.  
  258.  
  259. // xxxbsmedberg more toolkit prefs?
  260.  
  261. // Tab browser preferences.
  262.  
  263. pref("browser.tabs.autoHide", true);
  264.  
  265. pref("browser.tabs.forceHide", false);
  266.  
  267. pref("browser.tabs.loadInBackground", false);
  268.  
  269. pref("browser.tabs.opentabfor.middleclick", false);
  270.  
  271. pref("browser.tabs.opentabfor.urlbar", false);
  272.  
  273. pref("browser.tabs.opentabfor.windowopen", false);
  274.  
  275. pref("browser.tabs.opentabfor.bookmarks", false);
  276.  
  277. pref("browser.tabs.warnOnClose", true);
  278.  
  279. // 0 = append, 1 = replace
  280.  
  281. pref("browser.tabs.loadGroup", 1);
  282.  
  283.  
  284.  
  285. // lets new tab/window load something different than first window
  286.  
  287. // -1 - use navigator startup preference
  288.  
  289. //  0 - loads blank page
  290.  
  291. //  1 - loads home page
  292.  
  293. //  2 - loads last page visited
  294.  
  295. pref("browser.tabs.loadOnNewTab", 0);
  296.  
  297. pref("browser.windows.loadOnNewWindow", 1);
  298.  
  299.  
  300.  
  301. // view source
  302.  
  303. pref("view_source.syntax_highlight", true);
  304.  
  305. pref("view_source.wrap_long_lines", false);
  306.  
  307.  
  308.  
  309. // dispatch left clicks only to content in browser (still allows clicks to chrome/xul)
  310.  
  311. pref("nglayout.events.dispatchLeftClickOnly", true);
  312.  
  313.  
  314.  
  315. // whether or not to use xbl form controls
  316.  
  317. pref("nglayout.debug.enable_xbl_forms", false);
  318.  
  319.  
  320.  
  321. // size of scrollbar snapping region
  322.  
  323. pref("slider.snapMultiplier", 6);
  324.  
  325.  
  326.  
  327. // option to choose plug-in finder
  328.  
  329. pref("application.use_ns_plugin_finder", false);
  330.  
  331.  
  332.  
  333. // URI fixup prefs
  334.  
  335. pref("browser.fixup.alternate.enabled", true);
  336.  
  337. pref("browser.fixup.alternate.prefix", "www.");
  338.  
  339. pref("browser.fixup.alternate.suffix", ".com");
  340.  
  341. pref("browser.fixup.hide_user_pass", true);
  342.  
  343.  
  344.  
  345. // Print header customization
  346.  
  347. // Use the following codes:
  348.  
  349. // &T - Title
  350.  
  351. // &U - Document URL
  352.  
  353. // &D - Date/Time
  354.  
  355. // &P - Page Number
  356.  
  357. // &PT - Page Number "of" Page total
  358.  
  359. // Set each header to a string containing zero or one of these codes
  360.  
  361. // and the code will be replaced in that string by the corresponding data
  362.  
  363. pref("print.print_headerleft", "&T");
  364.  
  365. pref("print.print_headercenter", "");
  366.  
  367. pref("print.print_headerright", "&U");
  368.  
  369. pref("print.print_footerleft", "&PT");
  370.  
  371. pref("print.print_footercenter", "");
  372.  
  373. pref("print.print_footerright", "&D");
  374.  
  375. pref("print.show_print_progress", true);
  376.  
  377.  
  378.  
  379. // xxxbsmedberg: more toolkit prefs
  380.  
  381.  
  382.  
  383. // When this is set to false each window has its own PrintSettings
  384.  
  385. // and a chnage in one window does not affect the others
  386.  
  387. pref("print.use_global_printsettings", true);
  388.  
  389.  
  390.  
  391. // Use the native dialog or the XP dialog?
  392.  
  393. pref("print.use_native_print_dialog", false);
  394.  
  395.  
  396.  
  397. // Save the Printings after each print job
  398.  
  399. pref("print.save_print_settings", true);
  400.  
  401.  
  402.  
  403. pref("print.whileInPrintPreview", true);
  404.  
  405.  
  406.  
  407. // Cache old Presentation when going into Print Preview
  408.  
  409. pref("print.always_cache_old_pres", false);
  410.  
  411.  
  412.  
  413. // Enables you to specify the gap from the edge of the paper to the margin
  414.  
  415. // this is used by both Printing and Print Preview
  416.  
  417. pref("print.print_edge_top", 0); // 1/100 of an inch
  418.  
  419. pref("print.print_edge_left", 0); // 1/100 of an inch
  420.  
  421. pref("print.print_edge_right", 0); // 1/100 of an inch
  422.  
  423. pref("print.print_edge_bottom", 0); // 1/100 of an inch
  424.  
  425.  
  426.  
  427.  
  428.  
  429. // Prefs used by libeditor. Prefs specific to seamonkey composer
  430.  
  431. // belong in mozilla/editor/ui/composer.js
  432.  
  433.  
  434.  
  435. pref("editor.use_custom_colors", false);
  436.  
  437. pref("editor.htmlWrapColumn", 72);
  438.  
  439. pref("editor.singleLine.pasteNewlines",     1);
  440.  
  441. pref("editor.quotesPreformatted",            false);
  442.  
  443. pref("editor.use_css",                       true);
  444.  
  445. pref("editor.css.default_length_unit",       "px");
  446.  
  447. pref("editor.resizing.preserve_ratio",       true);
  448.  
  449. pref("editor.positioning.offset",            0);
  450.  
  451.  
  452.  
  453.  
  454.  
  455. // Default Capability Preferences: Security-Critical! 
  456.  
  457. // Editing these may create a security risk - be sure you know what you're doing
  458.  
  459. //pref("capability.policy.default.barprop.visible.set", "UniversalBrowserWrite");
  460.  
  461.  
  462.  
  463. pref("capability.policy.default_policynames", "mailnews");
  464.  
  465.  
  466.  
  467. pref("capability.policy.default.DOMException.code", "allAccess");
  468.  
  469. pref("capability.policy.default.DOMException.message", "allAccess");
  470.  
  471. pref("capability.policy.default.DOMException.name", "allAccess");
  472.  
  473. pref("capability.policy.default.DOMException.result", "allAccess");
  474.  
  475. pref("capability.policy.default.DOMException.toString.get", "allAccess");
  476.  
  477.  
  478.  
  479. pref("capability.policy.default.History.back.get", "allAccess");
  480.  
  481. pref("capability.policy.default.History.current", "UniversalBrowserRead");
  482.  
  483. pref("capability.policy.default.History.forward.get", "allAccess");
  484.  
  485. pref("capability.policy.default.History.go.get", "allAccess");
  486.  
  487. pref("capability.policy.default.History.item", "UniversalBrowserRead");
  488.  
  489. pref("capability.policy.default.History.next", "UniversalBrowserRead");
  490.  
  491. pref("capability.policy.default.History.previous", "UniversalBrowserRead");
  492.  
  493. pref("capability.policy.default.History.toString", "UniversalBrowserRead");
  494.  
  495.  
  496.  
  497. pref("capability.policy.default.HTMLDocument.close.get", "allAccess");
  498.  
  499. pref("capability.policy.default.HTMLDocument.open.get", "allAccess");
  500.  
  501.  
  502.  
  503. pref("capability.policy.default.Location.hash.set", "allAccess");
  504.  
  505. pref("capability.policy.default.Location.href.set", "allAccess");
  506.  
  507. pref("capability.policy.default.Location.reload.get", "allAccess");
  508.  
  509. pref("capability.policy.default.Location.replace.get", "allAccess");
  510.  
  511.  
  512.  
  513. pref("capability.policy.default.Navigator.preference", "allAccess");
  514.  
  515. pref("capability.policy.default.Navigator.preferenceinternal.get", "UniversalPreferencesRead");
  516.  
  517. pref("capability.policy.default.Navigator.preferenceinternal.set", "UniversalPreferencesWrite");
  518.  
  519.  
  520.  
  521. pref("capability.policy.default.Window.blur.get", "allAccess");
  522.  
  523. pref("capability.policy.default.Window.close.get", "allAccess");
  524.  
  525. pref("capability.policy.default.Window.closed", "allAccess");
  526.  
  527. pref("capability.policy.default.Window.Components", "allAccess");
  528.  
  529. pref("capability.policy.default.Window.document", "allAccess");
  530.  
  531. pref("capability.policy.default.Window.focus.get", "allAccess");
  532.  
  533. pref("capability.policy.default.Window.frames", "allAccess");
  534.  
  535. pref("capability.policy.default.Window.history", "allAccess");
  536.  
  537. pref("capability.policy.default.Window.length", "allAccess");
  538.  
  539. pref("capability.policy.default.Window.location", "allAccess");
  540.  
  541. pref("capability.policy.default.Window.opener", "allAccess");
  542.  
  543. pref("capability.policy.default.Window.parent", "allAccess");
  544.  
  545. pref("capability.policy.default.Window.self", "allAccess");
  546.  
  547. pref("capability.policy.default.Window.top", "allAccess");
  548.  
  549. pref("capability.policy.default.Window.window", "allAccess");
  550.  
  551.  
  552.  
  553. // Restrictions on the DOM for mail/news - see bugs 66938 and 84545
  554.  
  555. pref("capability.policy.mailnews.sites", "mailbox: imap: news:");
  556.  
  557.  
  558.  
  559. pref("capability.policy.mailnews.*.attributes.get", "noAccess");
  560.  
  561. pref("capability.policy.mailnews.*.baseURI.get", "noAccess");
  562.  
  563. pref("capability.policy.mailnews.*.data.get", "noAccess");
  564.  
  565. pref("capability.policy.mailnews.*.getAttribute", "noAccess");
  566.  
  567. pref("capability.policy.mailnews.*.getAttributeNS", "noAccess");
  568.  
  569. pref("capability.policy.mailnews.*.getNamedItem", "noAccess");
  570.  
  571. pref("capability.policy.mailnews.*.getNamedItemNS", "noAccess");
  572.  
  573. pref("capability.policy.mailnews.*.host.get", "noAccess");
  574.  
  575. pref("capability.policy.mailnews.*.hostname.get", "noAccess");
  576.  
  577. pref("capability.policy.mailnews.*.href.get", "noAccess");
  578.  
  579. pref("capability.policy.mailnews.*.innerHTML.get", "noAccess");
  580.  
  581. pref("capability.policy.mailnews.*.lowSrc.get", "noAccess");
  582.  
  583. pref("capability.policy.mailnews.*.nodeValue.get", "noAccess");
  584.  
  585. pref("capability.policy.mailnews.*.pathname.get", "noAccess");
  586.  
  587. pref("capability.policy.mailnews.*.protocol.get", "noAccess");
  588.  
  589. pref("capability.policy.mailnews.*.src.get", "noAccess");
  590.  
  591. pref("capability.policy.mailnews.*.substringData.get", "noAccess");
  592.  
  593. pref("capability.policy.mailnews.*.text.get", "noAccess");
  594.  
  595. pref("capability.policy.mailnews.*.title.get", "noAccess");
  596.  
  597. pref("capability.policy.mailnews.DOMException.toString", "noAccess");
  598.  
  599. pref("capability.policy.mailnews.HTMLAnchorElement.toString", "noAccess");
  600.  
  601. pref("capability.policy.mailnews.HTMLDocument.domain", "noAccess");
  602.  
  603. pref("capability.policy.mailnews.HTMLDocument.URL", "noAccess");
  604.  
  605. pref("capability.policy.mailnews.Location.toString", "noAccess");
  606.  
  607. pref("capability.policy.mailnews.Range.toString", "noAccess");
  608.  
  609. pref("capability.policy.mailnews.Window.blur", "noAccess");
  610.  
  611. pref("capability.policy.mailnews.Window.focus", "noAccess");
  612.  
  613. pref("capability.policy.mailnews.Window.innerWidth.set", "noAccess");
  614.  
  615. pref("capability.policy.mailnews.Window.innerHeight.set", "noAccess");
  616.  
  617. pref("capability.policy.mailnews.Window.moveBy", "noAccess");
  618.  
  619. pref("capability.policy.mailnews.Window.moveTo", "noAccess");
  620.  
  621. pref("capability.policy.mailnews.Window.name.set", "noAccess");
  622.  
  623. pref("capability.policy.mailnews.Window.outerHeight.set", "noAccess");
  624.  
  625. pref("capability.policy.mailnews.Window.outerWidth.set", "noAccess");
  626.  
  627. pref("capability.policy.mailnews.Window.resizeBy", "noAccess");
  628.  
  629. pref("capability.policy.mailnews.Window.resizeTo", "noAccess");
  630.  
  631. pref("capability.policy.mailnews.Window.screenX.set", "noAccess");
  632.  
  633. pref("capability.policy.mailnews.Window.screenY.set", "noAccess");
  634.  
  635. pref("capability.policy.mailnews.Window.sizeToContent", "noAccess");
  636.  
  637. pref("capability.policy.mailnews.document.load", "noAccess");
  638.  
  639. pref("capability.policy.mailnews.XMLHttpRequest.channel", "noAccess");
  640.  
  641. pref("capability.policy.mailnews.XMLHttpRequest.responseXML", "noAccess");
  642.  
  643. pref("capability.policy.mailnews.XMLHttpRequest.responseText", "noAccess");
  644.  
  645. pref("capability.policy.mailnews.XMLHttpRequest.status", "noAccess");
  646.  
  647. pref("capability.policy.mailnews.XMLHttpRequest.statusText", "noAccess");
  648.  
  649. pref("capability.policy.mailnews.XMLHttpRequest.abort", "noAccess");
  650.  
  651. pref("capability.policy.mailnews.XMLHttpRequest.getAllResponseHeaders", "noAccess");
  652.  
  653. pref("capability.policy.mailnews.XMLHttpRequest.getResponseHeader", "noAccess");
  654.  
  655. pref("capability.policy.mailnews.XMLHttpRequest.open", "noAccess");
  656.  
  657. pref("capability.policy.mailnews.XMLHttpRequest.send", "noAccess");
  658.  
  659. pref("capability.policy.mailnews.XMLHttpRequest.setRequestHeader", "noAccess");
  660.  
  661. pref("capability.policy.mailnews.XMLHttpRequest.readyState", "noAccess");
  662.  
  663. pref("capability.policy.mailnews.XMLHttpRequest.overrideMimeType", "noAccess");
  664.  
  665. pref("capability.policy.mailnews.XMLHttpRequest.onload", "noAccess");
  666.  
  667. pref("capability.policy.mailnews.XMLHttpRequest.onerror", "noAccess");
  668.  
  669. pref("capability.policy.mailnews.XMLHttpRequest.onreadystatechange", "noAccess");
  670.  
  671. pref("capability.policy.mailnews.XMLSerializer.serializeToString", "noAccess");
  672.  
  673. pref("capability.policy.mailnews.XMLSerializer.serializeToStream", "noAccess");
  674.  
  675. pref("capability.policy.mailnews.DOMParser,parseFromString", "noAccess");
  676.  
  677. pref("capability.policy.mailnews.DOMParser,parseFromStream", "noAccess");
  678.  
  679. pref("capability.policy.mailnews.SOAPCall.transportURI", "noAccess");
  680.  
  681. pref("capability.policy.mailnews.SOAPCall.verifySourceHeader", "noAccess");
  682.  
  683. pref("capability.policy.mailnews.SOAPCall.invoke", "noAccess");
  684.  
  685. pref("capability.policy.mailnews.SOAPCall.asyncInvoke", "noAccess");
  686.  
  687. pref("capability.policy.mailnews.SOAPResponse.fault", "noAccess");
  688.  
  689. pref("capability.policy.mailnews.SOAPEncoding.styleURI", "noAccess");
  690.  
  691. pref("capability.policy.mailnews.SOAPEncoding.getAssociatedEncoding", "noAccess");
  692.  
  693. pref("capability.policy.mailnews.SOAPEncoding.setEncoder", "noAccess");
  694.  
  695. pref("capability.policy.mailnews.SOAPEncoding.getEncoder", "noAccess");
  696.  
  697. pref("capability.policy.mailnews.SOAPEncoding.setDecoder", "noAccess");
  698.  
  699. pref("capability.policy.mailnews.SOAPEncoding.setDecoder", "noAccess");
  700.  
  701. pref("capability.policy.mailnews.SOAPEncoding.getDecoder", "noAccess");
  702.  
  703. pref("capability.policy.mailnews.SOAPEncoding.defaultEncoder", "noAccess");
  704.  
  705. pref("capability.policy.mailnews.SOAPEncoding.defaultDecoder", "noAccess");
  706.  
  707. pref("capability.policy.mailnews.SOAPEncoding.schemaCollection", "noAccess");
  708.  
  709. pref("capability.policy.mailnews.SOAPEncoding.encode", "noAccess");
  710.  
  711. pref("capability.policy.mailnews.SOAPEncoding.decode", "noAccess");
  712.  
  713. pref("capability.policy.mailnews.SOAPEncoding.mapSchemaURI", "noAccess");
  714.  
  715. pref("capability.policy.mailnews.SOAPEncoding.unmapSchemaURI", "noAccess");
  716.  
  717. pref("capability.policy.mailnews.SOAPEncoding.getInternalSchemaURI", "noAccess");
  718.  
  719. pref("capability.policy.mailnews.SOAPEncoding.getExternalSchemaURI", "noAccess");
  720.  
  721. pref("capability.policy.mailnews.SOAPFault.element", "noAccess");
  722.  
  723. pref("capability.policy.mailnews.SOAPFault.faultNamespaceURI", "noAccess");
  724.  
  725. pref("capability.policy.mailnews.SOAPFault.faultCode", "noAccess");
  726.  
  727. pref("capability.policy.mailnews.SOAPFault.faultString", "noAccess");
  728.  
  729. pref("capability.policy.mailnews.SOAPFault.faultActor", "noAccess");
  730.  
  731. pref("capability.policy.mailnews.SOAPFault.detail", "noAccess");
  732.  
  733. pref("capability.policy.mailnews.SOAPHeaderBlock.actorURI", "noAccess");
  734.  
  735. pref("capability.policy.mailnews.SOAPHeaderBlock.mustUnderstand", "noAccess");
  736.  
  737. pref("capability.policy.mailnews.SOAPParameter", "noAccess");
  738.  
  739. pref("capability.policy.mailnews.SOAPPropertyBagMutator.propertyBag", "noAccess");
  740.  
  741. pref("capability.policy.mailnews.SOAPPropertyBagMutator.addProperty", "noAccess");
  742.  
  743. pref("capability.policy.mailnews.SchemaLoader.load", "noAccess");
  744.  
  745. pref("capability.policy.mailnews.SchemaLoader.loadAsync", "noAccess");
  746.  
  747. pref("capability.policy.mailnews.SchemaLoader.processSchemaElement", "noAccess");
  748.  
  749. pref("capability.policy.mailnews.SchemaLoader.onLoad", "noAccess");
  750.  
  751. pref("capability.policy.mailnews.SchemaLoader.onError", "noAccess");
  752.  
  753. pref("capability.policy.mailnews.WSDLLoader.load", "noAccess");
  754.  
  755. pref("capability.policy.mailnews.WSDLLoader.loadAsync", "noAccess");
  756.  
  757. pref("capability.policy.mailnews.WSDLLoader.onLoad", "noAccess");
  758.  
  759. pref("capability.policy.mailnews.WSDLLoader.onError", "noAccess");
  760.  
  761. pref("capability.policy.mailnews.WebServiceProxyFactory.createProxy", "noAccess");
  762.  
  763. pref("capability.policy.mailnews.WebServiceProxyFactory.createProxyAsync", "noAccess");
  764.  
  765. pref("capability.policy.mailnews.WebServiceProxyFactory.onLoad", "noAccess");
  766.  
  767. pref("capability.policy.mailnews.WebServiceProxyFactory.onError", "noAccess");
  768.  
  769.  
  770.  
  771. // XMLExtras
  772.  
  773. pref("capability.policy.default.XMLHttpRequest.channel", "noAccess");
  774.  
  775. pref("capability.policy.default.DOMParser.parseFromStream", "noAccess");
  776.  
  777.  
  778.  
  779. // Clipboard
  780.  
  781. pref("capability.policy.default.Clipboard.cutcopy", "noAccess");
  782.  
  783. pref("capability.policy.default.Clipboard.paste", "noAccess");
  784.  
  785.  
  786.  
  787. // Scripts & Windows prefs
  788.  
  789. pref("browser.block.target_new_window",     false);
  790.  
  791. pref("dom.disable_image_src_set",           false);
  792.  
  793. pref("dom.disable_window_flip",             false);
  794.  
  795. pref("dom.disable_window_move_resize",      false);
  796.  
  797. pref("dom.disable_window_status_change",    false);
  798.  
  799.  
  800.  
  801. pref("dom.disable_window_open_feature.titlebar",    false);
  802.  
  803. pref("dom.disable_window_open_feature.close",       false);
  804.  
  805. pref("dom.disable_window_open_feature.toolbar",     false);
  806.  
  807. pref("dom.disable_window_open_feature.location",    false);
  808.  
  809. pref("dom.disable_window_open_feature.directories", false);
  810.  
  811. pref("dom.disable_window_open_feature.personalbar", false);
  812.  
  813. pref("dom.disable_window_open_feature.menubar",     false);
  814.  
  815. pref("dom.disable_window_open_feature.scrollbars",  false);
  816.  
  817. pref("dom.disable_window_open_feature.resizable",   false);
  818.  
  819. pref("dom.disable_window_open_feature.minimizable", false);
  820.  
  821. pref("dom.disable_window_open_feature.status",      true);
  822.  
  823.  
  824.  
  825. pref("dom.allow_scripts_to_close_windows",          false);
  826.  
  827.  
  828.  
  829. pref("dom.disable_open_during_load",                false);
  830.  
  831. pref("dom.popup_maximum",                           20);
  832.  
  833. pref("dom.popup_allowed_events", "change click dblclick mouseup reset submit");
  834.  
  835. pref("dom.disable_open_click_delay", 1000);
  836.  
  837.  
  838.  
  839. pref("dom.event.contextmenu.enabled",       true);
  840.  
  841.  
  842.  
  843. pref("javascript.enabled",                  true);
  844.  
  845. pref("javascript.allow.mailnews",           false);
  846.  
  847. pref("javascript.options.strict",           false);
  848.  
  849.  
  850.  
  851. // advanced prefs
  852.  
  853. pref("advanced.always_load_images",         true);
  854.  
  855. pref("security.enable_java",                true);
  856.  
  857. pref("advanced.mailftp",                    false);
  858.  
  859. pref("image.animation_mode",                "normal");
  860.  
  861.  
  862.  
  863. // If there is ever a security firedrill that requires
  864.  
  865. // us to block certian ports global, this is the pref 
  866.  
  867. // to use.  Is is a comma delimited list of port numbers
  868.  
  869. // for example:
  870.  
  871. //   pref("network.security.ports.banned", "1,2,3,4,5");
  872.  
  873. // prevents necko connecting to ports 1-5 unless the protocol
  874.  
  875. // overrides.
  876.  
  877.  
  878.  
  879. // Default action for unlisted external protocol handlers
  880.  
  881. pref("network.protocol-handler.external-default", true);      // OK to load
  882.  
  883. pref("network.protocol-handler.warn-external-default", true); // warn before load
  884.  
  885.  
  886.  
  887. // Prevent using external protocol handlers for these schemes
  888.  
  889. pref("network.protocol-handler.external.hcp", false);
  890.  
  891. pref("network.protocol-handler.external.vbscript", false);
  892.  
  893. pref("network.protocol-handler.external.javascript", false);
  894.  
  895. pref("network.protocol-handler.external.data", false);
  896.  
  897. pref("network.protocol-handler.external.ms-help", false);
  898.  
  899. pref("network.protocol-handler.external.shell", false);
  900.  
  901. pref("network.protocol-handler.external.vnd.ms.radio", false);
  902.  
  903. pref("network.protocol-handler.external.help", false);
  904.  
  905. pref("network.protocol-handler.external.disk", false);
  906.  
  907. pref("network.protocol-handler.external.disks", false);
  908.  
  909. pref("network.protocol-handler.external.afp", false);
  910.  
  911.  
  912.  
  913. // An exposed protocol handler is one that can be used in all contexts.  A
  914.  
  915. // non-exposed protocol handler is one that can only be used internally by the
  916.  
  917. // application.  For example, a non-exposed protocol would not be loaded by the
  918.  
  919. // application in response to a link click or a X-remote openURL command.
  920.  
  921. // Instead, it would be deferred to the system's external protocol handler.
  922.  
  923. // Only internal/built-in protocol handlers can be marked as exposed.
  924.  
  925.  
  926.  
  927. // This pref controls the default settings.  Per protocol settings can be used
  928.  
  929. // to override this value.
  930.  
  931. pref("network.protocol-handler.expose-all", true);
  932.  
  933.  
  934.  
  935. // Example: make IMAP an exposed protocol
  936.  
  937. // pref("network.protocol-handler.expose.imap", true);
  938.  
  939.  
  940.  
  941. pref("network.hosts.smtp_server",           "mail");
  942.  
  943. pref("network.hosts.pop_server",            "mail");
  944.  
  945.  
  946.  
  947. // <http>
  948.  
  949. pref("network.http.version", "1.1");      // default
  950.  
  951. // pref("network.http.version", "1.0");   // uncomment this out in case of problems
  952.  
  953. // pref("network.http.version", "0.9");   // it'll work too if you're crazy
  954.  
  955. // keep-alive option is effectively obsolete. Nevertheless it'll work with
  956.  
  957. // some older 1.0 servers:
  958.  
  959.  
  960.  
  961. pref("network.http.proxy.version", "1.1");    // default
  962.  
  963. // pref("network.http.proxy.version", "1.0"); // uncomment this out in case of problems
  964.  
  965.                                               // (required if using junkbuster proxy)
  966.  
  967.  
  968.  
  969. // enable caching of http documents
  970.  
  971. pref("network.http.use-cache", true);
  972.  
  973.  
  974.  
  975. // this preference can be set to override the socket type used for normal
  976.  
  977. // HTTP traffic.  an empty value indicates the normal TCP/IP socket type.
  978.  
  979. pref("network.http.default-socket-type", "");
  980.  
  981.  
  982.  
  983. pref("network.http.keep-alive", true); // set it to false in case of problems
  984.  
  985. pref("network.http.proxy.keep-alive", true);
  986.  
  987. pref("network.http.keep-alive.timeout", 300);
  988.  
  989.  
  990.  
  991. // limit the absolute number of http connections.
  992.  
  993. pref("network.http.max-connections", 24);
  994.  
  995.  
  996.  
  997. // limit the absolute number of http connections that can be established per
  998.  
  999. // host.  if a http proxy server is enabled, then the "server" is the proxy
  1000.  
  1001. // server.  Otherwise, "server" is the http origin server.
  1002.  
  1003. pref("network.http.max-connections-per-server", 8);
  1004.  
  1005.  
  1006.  
  1007. // if network.http.keep-alive is true, and if NOT connecting via a proxy, then
  1008.  
  1009. // a new connection will only be attempted if the number of active persistent
  1010.  
  1011. // connections to the server is less then max-persistent-connections-per-server.
  1012.  
  1013. pref("network.http.max-persistent-connections-per-server", 2);
  1014.  
  1015.  
  1016.  
  1017. // if network.http.keep-alive is true, and if connecting via a proxy, then a
  1018.  
  1019. // new connection will only be attempted if the number of active persistent
  1020.  
  1021. // connections to the proxy is less then max-persistent-connections-per-proxy.
  1022.  
  1023. pref("network.http.max-persistent-connections-per-proxy", 4);
  1024.  
  1025.  
  1026.  
  1027. // amount of time (in seconds) to suspend pending requests, before spawning a
  1028.  
  1029. // new connection, once the limit on the number of persistent connections per
  1030.  
  1031. // host has been reached.  however, a new connection will not be created if
  1032.  
  1033. // max-connections or max-connections-per-server has also been reached.
  1034.  
  1035. pref("network.http.request.max-start-delay", 10);
  1036.  
  1037.  
  1038.  
  1039. // http specific network timeouts (XXX currently unused)
  1040.  
  1041. pref("network.http.connect.timeout",  30);    // in seconds
  1042.  
  1043. pref("network.http.request.timeout", 120);    // in seconds
  1044.  
  1045.  
  1046.  
  1047. // Headers
  1048.  
  1049. pref("network.http.accept.default", "text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5");
  1050.  
  1051. pref("network.http.sendRefererHeader",      2); // 0=don't send any, 1=send only on clicks, 2=send on image requests as well
  1052.  
  1053.  
  1054.  
  1055. // Controls whether we send HTTPS referres to other HTTPS sites.
  1056.  
  1057. // By default this is enabled for compatibility (see bug 141641)
  1058.  
  1059. pref("network.http.sendSecureXSiteReferrer", true);
  1060.  
  1061.  
  1062.  
  1063. // Maximum number of consecutive redirects before aborting.
  1064.  
  1065. pref("network.http.redirection-limit", 20);
  1066.  
  1067.  
  1068.  
  1069. // Enable http compression: comment this out in case of problems with 1.1
  1070.  
  1071. // NOTE: support for "compress" has been disabled per bug 196406.
  1072.  
  1073. pref("network.http.accept-encoding" ,"gzip,deflate");
  1074.  
  1075.  
  1076.  
  1077. pref("network.http.pipelining"      , false);
  1078.  
  1079. pref("network.http.proxy.pipelining", false);
  1080.  
  1081.  
  1082.  
  1083. // Max number of requests in the pipeline
  1084.  
  1085. pref("network.http.pipelining.maxrequests" , 4);
  1086.  
  1087.  
  1088.  
  1089. // </http>
  1090.  
  1091.  
  1092.  
  1093. // This preference controls whether or not internationalized domain names (IDN)
  1094.  
  1095. // are handled.  IDN requires a nsIIDNService implementation.
  1096.  
  1097. pref("network.enableIDN", true);
  1098.  
  1099.  
  1100.  
  1101. // This preference, if true, causes all UTF-8 domain names to be normalized to
  1102.  
  1103. // punycode.  The intention is to allow UTF-8 domain names as input, but never
  1104.  
  1105. // generate them from punycode.
  1106.  
  1107. pref("network.IDN_show_punycode", true);
  1108.  
  1109.  
  1110.  
  1111. // This preference specifies a list of domains for which DNS lookups will be
  1112.  
  1113. // IPv4 only. Works around broken DNS servers which can't handle IPv6 lookups
  1114.  
  1115. // and/or allows the user to disable IPv6 on a per-domain basis. See bug 68796.
  1116.  
  1117. pref("network.dns.ipv4OnlyDomains", ".doubleclick.net");
  1118.  
  1119.  
  1120.  
  1121. // This preference can be used to turn off IPv6 name lookups. See bug 68796.
  1122.  
  1123. pref("network.dns.disableIPv6", false);
  1124.  
  1125.  
  1126.  
  1127. // This preference controls whether or not URLs with UTF-8 characters are
  1128.  
  1129. // escaped.  Set this preference to TRUE for strict RFC2396 conformance.
  1130.  
  1131. pref("network.standard-url.escape-utf8", true);
  1132.  
  1133.  
  1134.  
  1135. // This preference controls whether or not URLs are always encoded and sent as
  1136.  
  1137. // UTF-8.
  1138.  
  1139. pref("network.standard-url.encode-utf8", false);
  1140.  
  1141.  
  1142.  
  1143. // Idle timeout for ftp control connections - 5 minute default
  1144.  
  1145. pref("network.ftp.idleConnectionTimeout", 300);
  1146.  
  1147.  
  1148.  
  1149. // directory listing format - constants are defined in nsIDirectoryListing.idl
  1150.  
  1151. // Do not set this to 0...
  1152.  
  1153. pref("network.dir.format", 2);
  1154.  
  1155.  
  1156.  
  1157. // enables the prefetch service (i.e., prefetching of <link rel="next"> URLs).
  1158.  
  1159. pref("network.prefetch-next", true);
  1160.  
  1161.  
  1162.  
  1163.  
  1164.  
  1165. // The following prefs pertain to the negotiate-auth extension (see bug 17578),
  1166.  
  1167. // which provides transparent Kerberos or NTLM authentication using the SPNEGO
  1168.  
  1169. // protocol.  Each pref is a comma-separated list of keys, where each key has
  1170.  
  1171. // the format:
  1172.  
  1173. //   [scheme "://"] [host [":" port]]
  1174.  
  1175. // For example, "foo.com" would match "http://www.foo.com/bar", etc.
  1176.  
  1177.  
  1178.  
  1179. // This list controls which URIs can use the negotiate-auth protocol.  This
  1180.  
  1181. // list should be limited to the servers you know you'll need to login to.
  1182.  
  1183. pref("network.negotiate-auth.trusted-uris", "");
  1184.  
  1185. // This list controls which URIs can support delegation.
  1186.  
  1187. pref("network.negotiate-auth.delegation-uris", "");
  1188.  
  1189.  
  1190.  
  1191. // The following prefs are used to enable automatic use of the operating
  1192.  
  1193. // system's NTLM implementation to silently authenticate the user with their
  1194.  
  1195. // Window's domain logon.  By default, this is enabled for proxy servers.
  1196.  
  1197. // The trusted-uris pref follows the format of the trusted-uris pref for
  1198.  
  1199. // negotiate authentication.
  1200.  
  1201. pref("network.automatic-ntlm-auth.allow-proxies", true);
  1202.  
  1203. pref("network.automatic-ntlm-auth.trusted-uris", "");
  1204.  
  1205.  
  1206.  
  1207.  
  1208.  
  1209. // sspitzer:  change this back to "news" when we get to beta.
  1210.  
  1211. // for now, set this to news.mozilla.org because you can only
  1212.  
  1213. // post to the server specified by this pref.
  1214.  
  1215. pref("network.hosts.nntp_server",           "news.mozilla.org");
  1216.  
  1217.  
  1218.  
  1219. pref("network.image.imageBehavior",         0); // 0-Accept, 1-dontAcceptForeign, 2-dontUse
  1220.  
  1221. pref("network.image.warnAboutImages",       false);
  1222.  
  1223. pref("network.proxy.autoconfig_url",        "");
  1224.  
  1225. pref("network.proxy.type",                  0);
  1226.  
  1227. pref("network.proxy.ftp",                   "");
  1228.  
  1229. pref("network.proxy.ftp_port",              0);
  1230.  
  1231. pref("network.proxy.gopher",                "");
  1232.  
  1233. pref("network.proxy.gopher_port",           0);
  1234.  
  1235. pref("network.proxy.http",                  "");
  1236.  
  1237. pref("network.proxy.http_port",             0);
  1238.  
  1239. pref("network.proxy.ssl",                   "");
  1240.  
  1241. pref("network.proxy.ssl_port",              0);
  1242.  
  1243. pref("network.proxy.socks",                 "");
  1244.  
  1245. pref("network.proxy.socks_port",            0);
  1246.  
  1247. pref("network.proxy.socks_version",         5);
  1248.  
  1249. pref("network.proxy.no_proxies_on",         "localhost, 127.0.0.1");
  1250.  
  1251. pref("network.online",                      true); //online/offline
  1252.  
  1253. pref("network.cookie.cookieBehavior",       3); // 0-Accept, 1-dontAcceptForeign, 2-dontUse, 3-p3p
  1254.  
  1255. pref("network.cookie.disableCookieForMailNews", true); // disable all cookies for mail
  1256.  
  1257. pref("network.cookie.lifetimePolicy",       0); // accept normally, 1-askBeforeAccepting, 2-acceptForSession,3-acceptForNDays
  1258.  
  1259. pref("network.cookie.alwaysAcceptSessionCookies", false);
  1260.  
  1261. pref("network.cookie.prefsMigrated",        false);
  1262.  
  1263. pref("network.cookie.lifetime.days",        90);
  1264.  
  1265.  
  1266.  
  1267. // The following default value is for p3p medium mode.
  1268.  
  1269. // See extensions/cookie/resources/content/p3p.xul for the definitions of low/medium/hi
  1270.  
  1271. pref("network.cookie.p3p",                  "ffffaaaa");
  1272.  
  1273. pref("network.cookie.p3plevel",             1); // 0=low, 1=medium, 2=high, 3=custom
  1274.  
  1275.  
  1276.  
  1277. pref("network.enablePad",                   false); // Allow client to do proxy autodiscovery
  1278.  
  1279. pref("converter.html2txt.structs",          true); // Output structured phrases (strong, em, code, sub, sup, b, i, u)
  1280.  
  1281. pref("converter.html2txt.header_strategy",  1); // 0 = no indention; 1 = indention, increased with header level; 2 = numbering and slight indention
  1282.  
  1283.  
  1284.  
  1285. pref("intl.accept_languages",               "chrome://navigator/locale/navigator.properties");
  1286.  
  1287. pref("intl.accept_charsets",                "iso-8859-1,*,utf-8");
  1288.  
  1289. pref("intl.collationOption",                "chrome://navigator-platform/locale/navigator.properties");
  1290.  
  1291. pref("intl.menuitems.alwaysappendaccesskeys","chrome://navigator/locale/navigator.properties");
  1292.  
  1293. pref("intl.charsetmenu.browser.static",     "chrome://navigator/locale/navigator.properties");
  1294.  
  1295. pref("intl.charsetmenu.browser.more1",      "chrome://navigator/locale/navigator.properties");
  1296.  
  1297. pref("intl.charsetmenu.browser.more2",      "chrome://navigator/locale/navigator.properties");
  1298.  
  1299. pref("intl.charsetmenu.browser.more3",      "chrome://navigator/locale/navigator.properties");
  1300.  
  1301. pref("intl.charsetmenu.browser.more4",      "chrome://navigator/locale/navigator.properties");
  1302.  
  1303. pref("intl.charsetmenu.browser.more5",      "chrome://navigator/locale/navigator.properties");
  1304.  
  1305. pref("intl.charsetmenu.browser.unicode",    "chrome://navigator/locale/navigator.properties");
  1306.  
  1307. pref("intl.charsetmenu.mailedit",           "chrome://navigator/locale/navigator.properties");
  1308.  
  1309. pref("intl.charsetmenu.browser.cache",      "");
  1310.  
  1311. pref("intl.charsetmenu.mailview.cache",     "");
  1312.  
  1313. pref("intl.charsetmenu.composer.cache",     "");
  1314.  
  1315. pref("intl.charsetmenu.browser.cache.size", 5);
  1316.  
  1317. pref("intl.charset.detector",               "chrome://navigator/locale/navigator.properties");
  1318.  
  1319. pref("intl.charset.default",                "chrome://navigator-platform/locale/navigator.properties");
  1320.  
  1321. pref("intl.content.langcode",               "chrome://communicator-region/locale/region.properties");
  1322.  
  1323. pref("intl.locale.matchOS",                 false);
  1324.  
  1325. // fallback charset list for Unicode conversion (converting from Unicode)
  1326.  
  1327. // currently used for mail send only to handle symbol characters (e.g Euro, trademark, smartquotes)
  1328.  
  1329. // for ISO-8859-1
  1330.  
  1331. pref("intl.fallbackCharsetList.ISO-8859-1", "windows-1252");
  1332.  
  1333. pref("font.language.group",                 "chrome://navigator/locale/navigator.properties");
  1334.  
  1335.  
  1336.  
  1337. pref("images.dither", "auto");
  1338.  
  1339. pref("security.directory",              "");
  1340.  
  1341.  
  1342.  
  1343. pref("signed.applets.codebase_principal_support", false);
  1344.  
  1345. pref("security.checkloaduri", true);
  1346.  
  1347. pref("security.xpconnect.plugin.unrestricted", true);
  1348.  
  1349. // security-sensitive dialogs should delay button enabling. In milliseconds.
  1350.  
  1351. pref("security.dialog_enable_delay", 2000);
  1352.  
  1353.  
  1354.  
  1355. // Modifier key prefs: default to Windows settings,
  1356.  
  1357. // menu access key = alt, accelerator key = control.
  1358.  
  1359. // Use 17 for Ctrl, 18 for Alt, 224 for Meta, 0 for none. Mac settings in macprefs.js
  1360.  
  1361. pref("ui.key.accelKey", 17);
  1362.  
  1363. pref("ui.key.generalAccessKey", 18);
  1364.  
  1365. pref("ui.key.menuAccessKey", 18);
  1366.  
  1367.  
  1368.  
  1369. pref("ui.key.menuAccessKeyFocuses", false); // overridden below
  1370.  
  1371. pref("ui.key.saveLink.shift", true); // true = shift, false = meta
  1372.  
  1373.  
  1374.  
  1375. // Middle-mouse handling
  1376.  
  1377. pref("middlemouse.paste", false);
  1378.  
  1379. pref("middlemouse.openNewWindow", true);
  1380.  
  1381. pref("middlemouse.contentLoadURL", false);
  1382.  
  1383. pref("middlemouse.scrollbarPosition", false);
  1384.  
  1385.  
  1386.  
  1387. // Clipboard behavior
  1388.  
  1389. pref("clipboard.autocopy", false);
  1390.  
  1391.  
  1392.  
  1393. // 0=lines, 1=pages, 2=history , 3=text size
  1394.  
  1395. pref("mousewheel.withnokey.action",0);
  1396.  
  1397. pref("mousewheel.withnokey.numlines",1);    
  1398.  
  1399. pref("mousewheel.withnokey.sysnumlines",true);
  1400.  
  1401. pref("mousewheel.withcontrolkey.action",0);
  1402.  
  1403. pref("mousewheel.withcontrolkey.numlines",1);
  1404.  
  1405. pref("mousewheel.withcontrolkey.sysnumlines",true);
  1406.  
  1407. pref("mousewheel.withshiftkey.action",0);
  1408.  
  1409. pref("mousewheel.withshiftkey.numlines",1);
  1410.  
  1411. pref("mousewheel.withshiftkey.sysnumlines",true);
  1412.  
  1413. pref("mousewheel.withaltkey.action",2);
  1414.  
  1415. pref("mousewheel.withaltkey.numlines",1);
  1416.  
  1417. pref("mousewheel.withaltkey.sysnumlines",false);
  1418.  
  1419. pref("mousewheel.horizscroll.withnokey.action",2);
  1420.  
  1421. pref("mousewheel.horizscroll.withnokey.numlines",-1);
  1422.  
  1423. pref("mousewheel.horizscroll.withnokey.sysnumlines",false);
  1424.  
  1425. pref("mousewheel.horizscroll.withcontrolkey.action",2);
  1426.  
  1427. pref("mousewheel.horizscroll.withcontrolkey.numlines",-1);
  1428.  
  1429. pref("mousewheel.horizscroll.withcontrolkey.sysnumlines",false);
  1430.  
  1431. pref("mousewheel.horizscroll.withshiftkey.action",2);
  1432.  
  1433. pref("mousewheel.horizscroll.withshiftkey.numlines",-1);
  1434.  
  1435. pref("mousewheel.horizscroll.withshiftkey.sysnumlines",false);
  1436.  
  1437. pref("mousewheel.horizscroll.withaltkey.action",2);
  1438.  
  1439. pref("mousewheel.horizscroll.withaltkey.numlines",-1);
  1440.  
  1441. pref("mousewheel.horizscroll.withaltkey.sysnumlines",false);
  1442.  
  1443.  
  1444.  
  1445. pref("profile.confirm_automigration",true);
  1446.  
  1447. // profile.migration_behavior determines how the profiles root is set
  1448.  
  1449. // 0 - use NS_APP_USER_PROFILES_ROOT_DIR
  1450.  
  1451. // 1 - create one based on the NS4.x profile root
  1452.  
  1453. // 2 - use, if not empty, profile.migration_directory otherwise same as 0
  1454.  
  1455. pref("profile.migration_behavior",0);
  1456.  
  1457. pref("profile.migration_directory", "");
  1458.  
  1459.  
  1460.  
  1461. // the amount of time (in seconds) that must elapse
  1462.  
  1463. // before we think your mozilla profile is defunct
  1464.  
  1465. // and you'd benefit from re-migrating from 4.x
  1466.  
  1467. // see bug #137886 for more details
  1468.  
  1469. //
  1470.  
  1471. // if -1, we never think your profile is defunct
  1472.  
  1473. // and users will never see the remigrate UI.
  1474.  
  1475. pref("profile.seconds_until_defunct", -1);
  1476.  
  1477. // We can show it anytime from menus
  1478.  
  1479. pref("profile.manage_only_at_launch", false);
  1480.  
  1481.  
  1482.  
  1483. pref("prefs.converted-to-utf8",false);
  1484.  
  1485.  
  1486.  
  1487. // --------------------------------------------------
  1488.  
  1489. // IBMBIDI 
  1490.  
  1491. // --------------------------------------------------
  1492.  
  1493. //
  1494.  
  1495. // ------------------
  1496.  
  1497. //  Text Direction
  1498.  
  1499. // ------------------
  1500.  
  1501. // 1 = directionLTRBidi *
  1502.  
  1503. // 2 = directionRTLBidi
  1504.  
  1505. pref("bidi.direction", 1);
  1506.  
  1507. // ------------------
  1508.  
  1509. //  Text Type
  1510.  
  1511. // ------------------
  1512.  
  1513. // 1 = charsettexttypeBidi *
  1514.  
  1515. // 2 = logicaltexttypeBidi
  1516.  
  1517. // 3 = visualtexttypeBidi
  1518.  
  1519. pref("bidi.texttype", 1);
  1520.  
  1521. // ------------------
  1522.  
  1523. //  Controls Text Mode
  1524.  
  1525. // ------------------
  1526.  
  1527. // 1 = logicalcontrolstextmodeBidiCmd
  1528.  
  1529. // 2 = visualcontrolstextmodeBidi <-- NO LONGER SUPPORTED
  1530.  
  1531. // 3 = containercontrolstextmodeBidi *
  1532.  
  1533. pref("bidi.controlstextmode", 1);
  1534.  
  1535. // ------------------
  1536.  
  1537. //  Numeral Style
  1538.  
  1539. // ------------------
  1540.  
  1541. // 0 = nominalnumeralBidi *
  1542.  
  1543. // 1 = regularcontextnumeralBidi
  1544.  
  1545. // 2 = hindicontextnumeralBidi
  1546.  
  1547. // 3 = arabicnumeralBidi
  1548.  
  1549. // 4 = hindinumeralBidi
  1550.  
  1551. pref("bidi.numeral", 0);
  1552.  
  1553. // ------------------
  1554.  
  1555. //  Support Mode
  1556.  
  1557. // ------------------
  1558.  
  1559. // 1 = mozillaBidisupport *
  1560.  
  1561. // 2 = OsBidisupport
  1562.  
  1563. // 3 = disableBidisupport
  1564.  
  1565. pref("bidi.support", 1);
  1566.  
  1567. // ------------------
  1568.  
  1569. //  Charset Mode
  1570.  
  1571. // ------------------
  1572.  
  1573. // 1 = doccharactersetBidi *
  1574.  
  1575. // 2 = defaultcharactersetBidi
  1576.  
  1577. pref("bidi.characterset", 1);
  1578.  
  1579.  
  1580.  
  1581.  
  1582.  
  1583. // used for double-click word selection behavior. Win will override.
  1584.  
  1585. pref("layout.word_select.eat_space_to_next_word", false);
  1586.  
  1587. pref("layout.word_select.stop_at_punctuation", true);
  1588.  
  1589.  
  1590.  
  1591. // pref to control whether or not to replace backslashes with Yen signs
  1592.  
  1593. // in documents encoded in one of Japanese legacy encodings (EUC-JP, 
  1594.  
  1595. // Shift_JIS, ISO-2022-JP)
  1596.  
  1597. pref("layout.enable_japanese_specific_transform", false);
  1598.  
  1599.  
  1600.  
  1601. // pref to force frames to be resizable
  1602.  
  1603. pref("layout.frames.force_resizability", false);
  1604.  
  1605.  
  1606.  
  1607. // pref to permit users to make verified SOAP calls by default
  1608.  
  1609. pref("capability.policy.default.SOAPCall.invokeVerifySourceHeader", "allAccess");
  1610.  
  1611.  
  1612.  
  1613. // if true, allow plug-ins to override internal imglib decoder mime types in full-page mode
  1614.  
  1615. pref("plugin.override_internal_types", false);
  1616.  
  1617. pref("plugin.expose_full_path", false); // if true navigator.plugins reveals full path
  1618.  
  1619.  
  1620.  
  1621. // See bug 136985.  Gives embedders a pref to hook into to show
  1622.  
  1623. // a popup blocker if they choose.
  1624.  
  1625. pref("browser.popups.showPopupBlocker", true);
  1626.  
  1627.  
  1628.  
  1629. // Pref to control whether the viewmanager code does double-buffering or not
  1630.  
  1631. // See http://bugzilla.mozilla.org/show_bug.cgi?id=169483 for further details...
  1632.  
  1633. pref("viewmanager.do_doublebuffering", true);
  1634.  
  1635.  
  1636.  
  1637. // which files will be selected for roaming by default.
  1638.  
  1639. // See sroaming/content/prefs/all.js
  1640.  
  1641. pref("roaming.default.files", "bookmarks.html,abook.mab,cookies.txt");
  1642.  
  1643. // display some general warning to the user about making backups, security etc.
  1644.  
  1645. pref("roaming.showInitialWarning", true);
  1646.  
  1647.  
  1648.  
  1649. // whether use prefs from system
  1650.  
  1651. pref("config.use_system_prefs", false);
  1652.  
  1653.  
  1654.  
  1655. // if the system has enabled accessibility
  1656.  
  1657. pref("config.use_system_prefs.accessibility", false);
  1658.  
  1659.  
  1660.  
  1661. /*
  1662.  
  1663.  * What are the entities that you want Mozilla to save using mnemonic
  1664.  
  1665.  * names rather than numeric codes? E.g. If set, we'll output  
  1666.  
  1667.  * otherwise, we may output 0xa0 depending on the charset.
  1668.  
  1669.  *
  1670.  
  1671.  * "none"   : don't use any entity names; only use numeric codes.
  1672.  
  1673.  * "basic"  : use entity names just for   & < > " for 
  1674.  
  1675.  *            interoperability/exchange with products that don't support more
  1676.  
  1677.  *            than that.
  1678.  
  1679.  * "latin1" : use entity names for 8bit accented letters and other special
  1680.  
  1681.  *            symbols between 128 and 255.
  1682.  
  1683.  * "html"   : use entity names for 8bit accented letters, greek letters, and
  1684.  
  1685.  *            other special markup symbols as defined in HTML4.
  1686.  
  1687.  */
  1688.  
  1689. //pref("editor.encode_entity",                 "html");
  1690.  
  1691.  
  1692.  
  1693. pref("editor.resizing.preserve_ratio",       true);
  1694.  
  1695. pref("editor.positioning.offset",            0);
  1696.  
  1697.  
  1698.  
  1699. pref("dom.max_script_run_time", 5);
  1700.  
  1701.  
  1702.  
  1703. pref("font.name.serif.ar", "Times New Roman");
  1704.  
  1705. pref("font.name.sans-serif.ar", "Arial");
  1706.  
  1707. pref("font.name.monospace.ar", "Courier New");
  1708.  
  1709. pref("font.name.cursive.ar", "Comic Sans MS");
  1710.  
  1711.  
  1712.  
  1713. pref("font.name.serif.el", "Times New Roman");
  1714.  
  1715. pref("font.name.sans-serif.el", "Arial");
  1716.  
  1717. pref("font.name.monospace.el", "Courier New");
  1718.  
  1719. pref("font.name.cursive.el", "Comic Sans MS");
  1720.  
  1721.  
  1722.  
  1723. pref("font.name.serif.he", "Narkisim");
  1724.  
  1725. pref("font.name.sans-serif.he", "Arial");
  1726.  
  1727. pref("font.name.monospace.he", "Fixed Miriam Transparent");
  1728.  
  1729. pref("font.name.cursive.he", "Gutmann Yad");
  1730.  
  1731. pref("font.name-list.serif.he", "Narkisim, David");
  1732.  
  1733. pref("font.name-list.monospace.he", "Fixed Miriam Transparent, Miriam Fixed, Rod, Courier New");
  1734.  
  1735. pref("font.name-list.cursive.he", "Gutmann Yad, Ktav, Arial");
  1736.  
  1737.  
  1738.  
  1739. // For CJK fonts, we list a font twice in name-list, once in the native script and once in English
  1740.  
  1741. // because the name of a CJK font returned by Win32 API is beyond our control and depends on
  1742.  
  1743. // whether or not Mozilla is run on CJK Win 9x/ME or Win 2k/XP with a CJK locale.
  1744.  
  1745. // (see bug 227815)
  1746.  
  1747.  
  1748.  
  1749. pref("font.name.serif.ja", "∩╝¡∩╝│ ∩╝░µÿĵ£¥"); // "MS PMincho"
  1750.  
  1751. pref("font.name.sans-serif.ja", "∩╝¡∩╝│ ∩╝░πé┤πé╖πââπé»"); // "MS PGothic"
  1752.  
  1753. pref("font.name.monospace.ja", "∩╝¡∩╝│ πé┤πé╖πââπé»"); // "MS Gothic"
  1754.  
  1755. pref("font.name-list.serif.ja", "MS PMincho, ∩╝¡∩╝│ ∩╝░µÿĵ£¥, MS Mincho, MS PGothic, MS Gothic");
  1756.  
  1757. pref("font.name-list.sans-serif.ja", "MS PGothic, ∩╝¡∩╝│ ∩╝░πé┤πé╖πââπé», MS Gothic, MS PMincho, MS Mincho");
  1758.  
  1759. pref("font.name-list.monospace.ja", "MS Gothic, ∩╝¡∩╝│ πé┤πé╖πââπé», MS Mincho, ∩╝¡∩╝│ µÿĵ£¥, MS PGothic, MS PMincho");
  1760.  
  1761.  
  1762.  
  1763. pref("font.name.serif.ko", "δ░öφâò"); // "Batang" 
  1764.  
  1765. pref("font.name.sans-serif.ko", "Ω╡┤δª╝"); // "Gulim" 
  1766.  
  1767. pref("font.name.monospace.ko", "Ω╡┤δª╝∞▓┤"); // "GulimChe" 
  1768.  
  1769. pref("font.name.cursive.ko", "Ω╢ü∞ä£"); // "Gungseo"
  1770.  
  1771.  
  1772.  
  1773. pref("font.name-list.serif.ko", "Batang, δ░öφâò, Gulim, Ω╡┤δª╝"); 
  1774.  
  1775. pref("font.name-list.sans-serif.ko", "Gulim, Ω╡┤δª╝"); 
  1776.  
  1777. pref("font.name-list.monospace.ko", "GulimChe, Ω╡┤δª╝∞▓┤"); 
  1778.  
  1779. pref("font.name-list.cursive.ko", "Gungseo, Ω╢ü∞ä£"); 
  1780.  
  1781.  
  1782.  
  1783. pref("font.name.serif.th", "Times New Roman");
  1784.  
  1785. pref("font.name.sans-serif.th", "Arial");
  1786.  
  1787. pref("font.name.monospace.th", "Courier New");
  1788.  
  1789. pref("font.name.cursive.th", "Comic Sans MS");
  1790.  
  1791.  
  1792.  
  1793. pref("font.name.serif.tr", "Times New Roman");
  1794.  
  1795. pref("font.name.sans-serif.tr", "Arial");
  1796.  
  1797. pref("font.name.monospace.tr", "Courier New");
  1798.  
  1799. pref("font.name.cursive.tr", "Comic Sans MS");
  1800.  
  1801.  
  1802.  
  1803. pref("font.name.serif.x-baltic", "Times New Roman");
  1804.  
  1805. pref("font.name.sans-serif.x-baltic", "Arial");
  1806.  
  1807. pref("font.name.monospace.x-baltic", "Courier New");
  1808.  
  1809. pref("font.name.cursive.x-baltic", "Comic Sans MS");
  1810.  
  1811.  
  1812.  
  1813. pref("font.name.serif.x-central-euro", "Times New Roman");
  1814.  
  1815. pref("font.name.sans-serif.x-central-euro", "Arial");
  1816.  
  1817. pref("font.name.monospace.x-central-euro", "Courier New");
  1818.  
  1819. pref("font.name.cursive.x-central-euro", "Comic Sans MS");
  1820.  
  1821.  
  1822.  
  1823. pref("font.name.serif.x-cyrillic", "Times New Roman");
  1824.  
  1825. pref("font.name.sans-serif.x-cyrillic", "Arial");
  1826.  
  1827. pref("font.name.monospace.x-cyrillic", "Courier New");
  1828.  
  1829. pref("font.name.cursive.x-cyrillic", "Comic Sans MS");
  1830.  
  1831.  
  1832.  
  1833. pref("font.name.serif.x-unicode", "Times New Roman");
  1834.  
  1835. pref("font.name.sans-serif.x-unicode", "Arial");
  1836.  
  1837. pref("font.name.monospace.x-unicode", "Courier New");
  1838.  
  1839. pref("font.name.cursive.x-unicode", "Comic Sans MS");
  1840.  
  1841.  
  1842.  
  1843. pref("font.name.serif.x-western", "Times New Roman");
  1844.  
  1845. pref("font.name.sans-serif.x-western", "Arial");
  1846.  
  1847. pref("font.name.monospace.x-western", "Courier New");
  1848.  
  1849. pref("font.name.cursive.x-western", "Comic Sans MS");
  1850.  
  1851.  
  1852.  
  1853. pref("font.name.serif.zh-CN", "σ«ïΣ╜ô"); //MS Song
  1854.  
  1855. pref("font.name.sans-serif.zh-CN", "σ«ïΣ╜ô"); //MS Song
  1856.  
  1857. pref("font.name.monospace.zh-CN", "σ«ïΣ╜ô"); //MS Song
  1858.  
  1859. pref("font.name-list.serif.zh-CN", "MS Song, σ«ïΣ╜ô, SimSun");
  1860.  
  1861. pref("font.name-list.sans-serif.zh-CN", "MS Song, σ«ïΣ╜ô, SimSun");
  1862.  
  1863. pref("font.name-list.monospace.zh-CN", "MS Song, σ«ïΣ╜ô, SimSun");
  1864.  
  1865.  
  1866.  
  1867. // Per Taiwanese users' demand. They don't want to use TC fonts for
  1868.  
  1869. // rendering Latin letters. (bug 88579)
  1870.  
  1871. pref("font.name.serif.zh-TW", "Times New Roman"); 
  1872.  
  1873. pref("font.name.sans-serif.zh-TW", "Arial"); 
  1874.  
  1875. pref("font.name.monospace.zh-TW", "τ┤░µÿÄΘ½ö");  // MingLiU
  1876.  
  1877. pref("font.name-list.serif.zh-TW", "µû░τ┤░µÿÄΘ½ö,PMingLiu,τ┤░µÿÄΘ½ö,MingLiU"); 
  1878.  
  1879. pref("font.name-list.sans-serif.zh-TW", "µû░τ┤░µÿÄΘ½ö,PMingLiU,τ┤░µÿÄΘ½ö,MingLiU");
  1880.  
  1881. pref("font.name-list.monospace.zh-TW", "MingLiU,τ┤░µÿÄΘ½ö");
  1882.  
  1883.  
  1884.  
  1885. // hkscsm3u.ttf (HKSCS-2001) :  http://www.microsoft.com/hk/hkscs 
  1886.  
  1887. // Hong Kong users have the same demand about glyphs for Latin letters (bug 88579) 
  1888.  
  1889. pref("font.name.serif.zh-HK", "Times New Roman"); 
  1890.  
  1891. pref("font.name.sans-serif.zh-HK", "Arial"); 
  1892.  
  1893. pref("font.name.monospace.zh-HK", "τ┤░µÿÄΘ½ö_HKSCS"); 
  1894.  
  1895. pref("font.name-list.serif.zh-HK", "τ┤░µÿÄΘ½ö_HKSCS, MingLiu_HKSCS, Ming(for ISO10646), MingLiU, τ┤░µÿÄΘ½ö"); 
  1896.  
  1897. pref("font.name-list.sans-serif.zh-HK", "τ┤░µÿÄΘ½ö_HKSCS, MingLiU_HKSCS, Ming(for ISO10646), MingLiU, τ┤░µÿÄΘ½ö");  
  1898.  
  1899. pref("font.name-list.monospace.zh-HK", "MingLiU_HKSCS,  τ┤░µÿÄΘ½ö_HKSCS, Ming(for ISO10646), MingLiU, τ┤░µÿÄΘ½ö");
  1900.  
  1901.  
  1902.  
  1903. pref("font.name.serif.x-devanagari", "Mangal");
  1904.  
  1905. pref("font.name.sans-serif.x-devanagari", "Raghindi");
  1906.  
  1907. pref("font.name.monospace.x-devanagari", "Mangal");
  1908.  
  1909. pref("font.name-list.serif.x-devanagari", "Mangal, Raghindi");
  1910.  
  1911. pref("font.name-list.monospace.x-devanagari", "Mangal, Raghindi");
  1912.  
  1913.  
  1914.  
  1915. pref("font.name.serif.x-tamil", "Latha");
  1916.  
  1917. pref("font.name.sans-serif.x-tamil", "Code2000");
  1918.  
  1919. pref("font.name.monospace.x-tamil", "Latha");
  1920.  
  1921. pref("font.name-list.serif.x-tamil", "Latha, Code2000");
  1922.  
  1923. pref("font.name-list.monospace.x-tamil", "Latha, Code2000");
  1924.  
  1925.  
  1926.  
  1927. pref("font.default", "serif");
  1928.  
  1929. pref("font.size.variable.ar", 16);
  1930.  
  1931. pref("font.size.fixed.ar", 13);
  1932.  
  1933.  
  1934.  
  1935. pref("font.size.variable.el", 16);
  1936.  
  1937. pref("font.size.fixed.el", 13);
  1938.  
  1939.  
  1940.  
  1941. pref("font.size.variable.he", 16);
  1942.  
  1943. pref("font.size.fixed.he", 13);
  1944.  
  1945.  
  1946.  
  1947. pref("font.size.variable.ja", 16);
  1948.  
  1949. pref("font.size.fixed.ja", 16);
  1950.  
  1951.  
  1952.  
  1953. pref("font.size.variable.ko", 16);
  1954.  
  1955. pref("font.size.fixed.ko", 16);
  1956.  
  1957.  
  1958.  
  1959. pref("font.size.variable.th", 16);
  1960.  
  1961. pref("font.size.fixed.th", 13);
  1962.  
  1963.  
  1964.  
  1965. pref("font.size.variable.tr", 16);
  1966.  
  1967. pref("font.size.fixed.tr", 13);
  1968.  
  1969.  
  1970.  
  1971. pref("font.size.variable.x-baltic", 16);
  1972.  
  1973. pref("font.size.fixed.x-baltic", 13);
  1974.  
  1975.  
  1976.  
  1977. pref("font.size.variable.x-central-euro", 16);
  1978.  
  1979. pref("font.size.fixed.x-central-euro", 13);
  1980.  
  1981.  
  1982.  
  1983. pref("font.size.variable.x-cyrillic", 16);
  1984.  
  1985. pref("font.size.fixed.x-cyrillic", 13);
  1986.  
  1987.  
  1988.  
  1989. pref("font.size.variable.x-devanagari", 16);
  1990.  
  1991. pref("font.size.fixed.x-devanagari", 13);
  1992.  
  1993.  
  1994.  
  1995. pref("font.size.variable.x-tamil", 16);
  1996.  
  1997. pref("font.size.fixed.x-tamil", 13);
  1998.  
  1999.  
  2000.  
  2001. pref("font.size.variable.x-unicode", 16);
  2002.  
  2003. pref("font.size.fixed.x-unicode", 13);
  2004.  
  2005.  
  2006.  
  2007. pref("font.size.variable.x-western", 16);
  2008.  
  2009. pref("font.size.fixed.x-western", 13);
  2010.  
  2011.  
  2012.  
  2013. pref("font.size.variable.zh-CN", 16);
  2014.  
  2015. pref("font.size.fixed.zh-CN", 16);
  2016.  
  2017.  
  2018.  
  2019. pref("font.size.variable.zh-TW", 16);
  2020.  
  2021. pref("font.size.fixed.zh-TW", 16);
  2022.  
  2023.  
  2024.  
  2025. pref("font.size.variable.zh-HK", 16);
  2026.  
  2027. pref("font.size.fixed.zh-HK", 16);
  2028.  
  2029.  
  2030.  
  2031. pref("font.size.nav4rounding", false);
  2032.  
  2033.  
  2034.  
  2035. pref("ui.key.menuAccessKeyFocuses", true);
  2036.  
  2037.  
  2038.  
  2039. // override double-click word selection behavior.
  2040.  
  2041. pref("layout.word_select.eat_space_to_next_word", true);
  2042.  
  2043.  
  2044.  
  2045. // print_extra_margin enables platforms to specify an extra gap or margin
  2046.  
  2047. // around the content of the page for Print Preview only
  2048.  
  2049. pref("print.print_extra_margin", 90); // twips (90 twips is an eigth of an inch)
  2050.  
  2051.  
  2052.  
  2053. // This indicates whether it should use the native dialog or the XP Dialog
  2054.  
  2055. pref("print.use_native_print_dialog", true);
  2056.  
  2057.  
  2058.  
  2059. // Locate Java by scanning the Sun JRE installation directory with a minimum version
  2060.  
  2061. // Note: Does not scan if security.enable_java is not true
  2062.  
  2063. pref("plugin.scan.SunJRE", "1.3");
  2064.  
  2065.  
  2066.  
  2067. // Locate plugins by scanning the Adobe Acrobat installation directory with a minimum version
  2068.  
  2069. pref("plugin.scan.Acrobat", "5.0");
  2070.  
  2071.  
  2072.  
  2073. // Locate plugins by scanning the Quicktime installation directory with a minimum version
  2074.  
  2075. pref("plugin.scan.Quicktime", "5.0");
  2076.  
  2077.  
  2078.  
  2079. // Locate and scan the Window Media Player installation directory for plugins with a minimum version
  2080.  
  2081. pref("plugin.scan.WindowsMediaPlayer", "7.0");
  2082.  
  2083.  
  2084.  
  2085. // Locate plugins by the directories specified in the Windows registry for PLIDs
  2086.  
  2087. // Which is currently HKLM\Software\MozillaPlugins\xxxPLIDxxx\Path
  2088.  
  2089. pref("plugin.scan.plid.all", true);
  2090.  
  2091.  
  2092.  
  2093. // Controls the scanning of the Navigator 4.x directory for plugins
  2094.  
  2095. // When pref is missing, the default is to pickup popular plugins such as
  2096.  
  2097. // Flash, Shockwave, Acrobat, and Quicktime. If set to true, ALL plugins
  2098.  
  2099. // will be picked up and if set to false the scan will not happen at all
  2100.  
  2101. //pref("plugin.scan.4xPluginFolder", false);
  2102.  
  2103.  
  2104.  
  2105. // Help Windows NT, 2000, and XP dialup a RAS connection
  2106.  
  2107. // when a network address is unreachable.
  2108.  
  2109. pref("network.autodial-helper.enabled", true);
  2110.  
  2111.  
  2112.  
  2113. // Pref to control whether we set ddeexec subkeys for the http
  2114.  
  2115. // Internet shortcut protocol if we are handling it.  These
  2116.  
  2117. // subkeys will be set only while we are running (to avoid the
  2118.  
  2119. // problem of Windows showing an alert when it tries to use DDE
  2120.  
  2121. // and we're not already running).
  2122.  
  2123. pref("advanced.system.supportDDEExec", true);
  2124.  
  2125.  
  2126.  
  2127. // Use CP932 compatible map for JIS X 0208
  2128.  
  2129. pref("intl.jis0208.map", "CP932");
  2130.  
  2131.  
  2132.  
  2133.  
  2134.  
  2135.  
  2136.  
  2137.  
  2138.  
  2139.  
  2140.  
  2141.  
  2142.  
  2143.  
  2144.  
  2145.  
  2146.  
  2147.